home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / DEPOSITO / REmovido / Nave / Blasteroids.swf / scripts / DefineButton2_169 / BUTTONCONDACTION on(keyPress Down).as next >
Text File  |  2006-06-13  |  313b  |  14 lines

  1. on(keyPress "<Down>"){
  2.    if(0.5 < _root.fuel1)
  3.    {
  4.       _root.fuel1 -= 0.5;
  5.       _root.Display1.FuelBar.gotoAndStop(int(_root.fuel1));
  6.       left = false;
  7.       right = false;
  8.       up = false;
  9.       down = true;
  10.       Burst.gotoAndPlay("Front");
  11.       _root.Sounds.gotoAndPlay("BurstF");
  12.    }
  13. }
  14.